home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 46
/
Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso
/
-in_the_mag-
/
reader_requests
/
scilab
/
demos
/
npend
/
maple
/
makefile
< prev
next >
Wrap
Makefile
|
1999-09-16
|
549b
|
36 lines
SHELL = /bin/sh
include ../../../Path.incl
include ../../../Version.incl
include ../../../Makefile.incl
FFLAGS = $(FC_OPTIONS)
OBJS = /tmp/ener.o /tmp/npend.o /tmp/np.o
all:: $(OBJS)
/tmp/ener.o: ener.f
$(FC) $(FFLAGS) -c ener.f -o /tmp/ener.o
clean::
$(RM) /tmp/ener.o
distclean::
$(RM) /tmp/ener.o
/tmp/np.o: np.f
$(FC) $(FFLAGS) -c np.f -o /tmp/np.o
clean::
$(RM) /tmp/np.o
distclean::
$(RM) /tmp/np.o
/tmp/npend.o: npend.f
$(FC) $(FFLAGS) -c npend.f -o /tmp/npend.o
distclean::
$(RM) /tmp/npend.o
clean::
$(RM) /tmp/npend.o